home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / watch_io.arc / READ.ME < prev    next >
Text File  |  1988-07-27  |  3KB  |  65 lines

  1. WATCHIO.COM  - This is a memory resident debugging utility that
  2.                allows a user at any time to see the names of all files
  3.                in use, and the name of the program currently running.
  4.                
  5.                The screen show reads,write,lseeks, read bytes write bytes
  6.                  DS:DX of open, DS:DX of last i/o, DOS file handle,
  7.                  process # which opened file, last file opened, last
  8.                  error file.
  9.                  
  10.          WATCHIO /H?  [where ? is the hot-key A-Z]  install with alt-key
  11.              or        
  12.          WATCHIO /U   to uninstall
  13.          
  14.  
  15.  
  16.  
  17. BOX.COM - This is a short program that will take the command line,
  18.           center it on a line, and draw a single line box around it.
  19.           I find it useful for replacing ECHO in batch files.
  20.  
  21.           
  22. Coming attractions from K & R Software/Quantum Publishing
  23.  
  24. 'WALK' by K & R Software allows a user to find files by:
  25.       - file size (or size range)
  26.       - date      (or date range)
  27.       - time      (or time range)
  28.       - file attributes (any combination e.g. hidden, system...)
  29.       - (or any combination of above)
  30.      
  31.       - Walk allows entry of a command string in which to use the files found
  32.            e.g. Walk *.bak pc=@ "del @" >scratcher.bat
  33.            
  34.            will walk the hard disk, finding all files with a .BAK extension,
  35.            the output will be piped into a batch file (scratcher.bat),
  36.            and the "@" will be replaced by each file found.
  37.            the results will look similar to this:
  38.            
  39.            del doc.bak
  40.            del raktest.bak
  41.            del letter.bak
  42.  
  43.       Syntax : WALK FL=x {optional parameters} {"optional command line"}
  44.  
  45.       FL= Filename to include in walk (wildcards permitted)
  46.       NT= filename NoT to include in walk (5 max; wildcards permitted)
  47.       PT= PaThname to start walking from
  48.       DR= DRives to include in walk
  49.  IN=  EX= INclude/EXclude file attributes (default EX=HDV)
  50.           Attributes: 1=undefined bit 1, 2=undefined bit 2,
  51.           R=Read-only, H=Hidden, S=System, D=Dir, V=Volume, A=Archive
  52.  SS=  ES= Start/End Size of files (in K) to include
  53.  SD=  ED= Start/End Date of files to include
  54.  ST=  ET= Start/End Time of files to include
  55.       OP= OPtions: 1=walk 1 level only, S=list file statistics,
  56.           D=DIR style listing, L=list suppression(to get Stats only),
  57.           Q=query command line execution(Y/N), V=verbose file detail(implies D)
  58.           E=execution suppression(for batch file creation)
  59.       PC= Path Character used for substitution in command line execution
  60.           string to be replaced with qualifying path/file name
  61.  "command line" command line to be executed for each qualifying path/file name
  62.            
  63.  
  64.  
  65.